home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Complete Applications / Othello C Source / initboard.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-06-16  |  1.4 KB  |  51 lines  |  [TEXT/ttxt]

  1. /* initboard.c - InitBoard */
  2.  
  3. #include "mac/quickdraw.h"
  4. #include "mac/osintf.h"
  5. #include "mac/toolintf.h"
  6. #include "othello.h"
  7.  
  8. BoardArray GameBoard =
  9.     { 03, 03, 03, 03, 03, 03, 03, 03, 03, 03,
  10.       03, 00, 00, 00, 00, 00, 00, 00, 00, 03,
  11.       03, 00, 00, 00, 00, 00, 00, 00, 00, 03,
  12.       03, 00, 00, 00, 00, 00, 00, 00, 00, 03,
  13.       03, 00, 00, 00, 00, 00, 00, 00, 00, 03,
  14.       03, 00, 00, 00, 00, 00, 00, 00, 00, 03,
  15.       03, 00, 00, 00, 00, 00, 00, 00, 00, 03,
  16.       03, 00, 00, 00, 00, 00, 00, 00, 00, 03,
  17.       03, 00, 00, 00, 00, 00, 00, 00, 00, 03,
  18.       03, 03, 03, 03, 03, 03, 03, 03, 03, 03 };
  19.  
  20. short InitPosition[BOARDSIZE+2][BOARDSIZE+2] =
  21.     {  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
  22.        0, 20,  3,  4,  4,  4,  4,  3, 20,  0,
  23.        0,  3, -7, -1, -1, -1, -1, -7,  3,  0,
  24.        0,  4, -1,  0,  0,  0,  0, -1,  4,  0,
  25.        0,  4, -1,  0,  0,  0,  0, -1,  4,  0,
  26.        0,  4, -1,  0,  0,  0,  0, -1,  4,  0,
  27.        0,  4, -1,  0,  0,  0,  0, -1,  4,  0,
  28.        0,  3, -7, -1, -1, -1, -1, -7,  3,  0,
  29.        0, 20,  3,  4,  4,  4,  4,  3, 20,  0,
  30.        0,  0,  0,  0,  0,  0,  0,  0,  0,  0 };
  31.  
  32. /*
  33.  * InitBoard:
  34.  *    Set up the playing board.
  35.  */
  36.  
  37. InitBoard()
  38. {
  39.     int    i, j;
  40.     
  41.     /* Initialize positional weights */
  42.     for (i = 1; i <= BOARDSIZE; ++i)
  43.         for (j = 1; j <= BOARDSIZE; ++j)
  44.         position[i][j] = InitPosition[i][j];
  45.  
  46.     /* Put stones in center to start game. */
  47.     for (i = 4; i <= 5; ++i)
  48.         for (j = 4; j <= 5; ++j)
  49.         PlaceStone(i, j, ((i+j) % 2)? stoneWhite : stoneBlack);
  50. }
  51.